Release 10.1A: OpenEdge Development:
Progress 4GL Reference


DBNAME function

Returns, as a character string, the name of the logical database currently in use or the name of your first connected database.

Syntax

DBNAME 

Example

This portion of a procedure defines a header frame to hold a date, page number, database name, and user ID:

r-dbname.p
DEFINE VARIABLE pageno AS INTEGER FORMAT "zzz9" INITIAL 1.

FORM HEADER "Date:" TO 10 TODAY
    "Page:" AT 65 pageno SKIP
    "Database:" TO 10 DBNAME FORMAT "x(60)" SKIP
    "Userid:" TO 10 userid WITH NO-BOX NO-LABELS.
VIEW. 

Notes

See also

ALIAS function, CONNECT statement, CONNECTED function, CREATE ALIAS statement, CREATE CALL statement, DATASERVERS function, DBVERSION function, DELETE ALIAS statement, DISCONNECT statement, FRAME-DB function, LDBNAME function, NUM-DBS function, PDBNAME function, SDBNAME function


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095